.recent-updates-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 0;
    color: white;
}
.recent-updates-title h1 {
    margin: 0;
    padding: 0;
}

.recent-updates {
    margin: 64px auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1200px;
    padding: 48px 32px;
    box-sizing: border-box;
    color: white;
}
h2 {
    font-size: 2.2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.review-item {
    background: #222;
    color: #fff;
    border: 1px solid #000000;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    padding: 16px;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.review-item a{
    text-decoration-color: purple;
    color: inherit;
}
.review-item:hover {
    box-shadow: 0 0px 16px rgb(255, 255, 255);
}
.review-thumb {
    width: 100%;
    border-radius: 8px 8px 0 0;
    margin-bottom: 14px;
    display: block;
}
.review-date {
    margin-top: 8px;
    font-size: 0.9em;
    text-align: left;
    width: 100%;
    color: #888;
}
.review-item h3{
    font-size: 2.4rem;
    letter-spacing: -1.5%;
    line-height: 120%;
    color: white;
    margin: 0;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
/* Hero banner with one big image */
.hero-banner {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 640px;
    max-height: 600px;
    overflow-x: clip;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-banner .hero-img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    filter: brightness(38%);
    display: block;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 98%);
}
.hero-banner .hero-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    user-select: none;
}
.hero-banner .hero-content h1 {
    color: #fff;
    font-family: "Dancing Script", cursive;
    font-size: 10vw;
    font-weight: 700;
    text-shadow: 0 2px 16px #000, 0 0 8px #222;
    margin: 0;
    letter-spacing: 0.05em;
}
@media (max-width: 700px) {
    .hero-banner {
        height: 36vh;
        min-height: 160px;
    }
    .hero-banner .hero-content h1 {
        font-size: 3.2em;
        font-weight: bold;
    }
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 150%;
    background-color: black;
    overflow-x: clip;
}
h1 {
    font-size: 3.8rem;
    letter-spacing: -2%;
    line-height: 100%;
}
h2 {
    font-size: 3rem;
    letter-spacing: -1.8%;
    line-height: 110%;
}
h3 {
    font-size: 2.4rem;
    letter-spacing: -1.5%;
    line-height: 120%;
}
h4 {
    font-size: 1.95rem;
    letter-spacing: -1.3%;
    line-height: 130%;
}
h5 {
    font-size: 1.5rem;
    letter-spacing: -1%;
    line-height: 140%;
}
h6 {
    font-size: 1.25rem;
    letter-spacing: -0.5%;
    line-height: 150%;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: rgba(34, 34, 34, 0.85);
    padding: 1em 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
}

.nav-logo {
    font-family: "Dancing Script", cursive;
    margin: 0;
    margin-left: 10px;
    color: #fff;
    font-weight: bold;
    font-size: 2em;
    flex: 0 0 auto;
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
/* Social icons container on navbar */
}

.nav-social {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.social-icon {
    width: 32px;
    height: 32px;
    margin-left: 12px;
    filter: brightness(0) invert(1);
    transition: filter 0.2s;
}

.social-icon:hover {
    filter: brightness(0.7) invert(0.7) sepia(1) saturate(5) hue-rotate(320deg);
}

.nav-link {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: filter 0.2s, color 0.2s;
}

.nav-link:hover {
    color: rgb(255, 99, 79);
    text-decoration: underline;
}

.our-philosophy {
    display: flex;
    flex-direction: row;
    gap: 48px;
    margin: 64px auto;
    max-width: 1200px;
    padding: 48px 32px;
    align-items: center;
    box-sizing: border-box;
}
.our-philosophy-image {
    flex: 1 1 0;
    min-width: 0;
}
.our-philosophy-text {
    flex: 1 1 0;   
    min-width: 0;
    color: white;
    /* animation: fade-in-below forwards linear;
    animation-timeline: view();
    animation-range: 10% 30%;
    opacity: 0; */
}

@keyframes fade-in-below {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 700px) {
    .hero-img {
        height: 40vh;
    }
    .our-philosophy {
        flex-direction: column;
        gap: 16px;
    }
    .our-philosophy-image, .our-philosophy-text {
        width: 100%;
    }
    .our-philosophy-text h2{
        font-size: 32px;
    }
    .our-philosophy-text h5{
        font-size: 20px;
    }
}